home *** CD-ROM | disk | FTP | other *** search
/ Games for Fun 1 / games-for-fun.iso / Guck rein! / Shareware / epsConverter™ 1.1 / Release Notes 1.1 < prev   
Encoding:
Text File  |  1994-08-25  |  6.5 KB  |  121 lines  |  [ttro/ttxt]

  1. epsConverter™ 1.1 Release Notes
  2.  
  3. As updates appear down the road, this document will be the quickest path to learning what has changed since the previous release.  A list of known problems/limitations in the current release appears at the end of this document.
  4.  
  5.  
  6. Changes from Version 1.0 to 1.1
  7.  
  8. New Features
  9.  
  10. • A text extraction feature has been added.  Choosing the "Macintosh Text" option in the Preferences dialog causes epsConverter to enter "text extraction mode."  This will result in the creation of simple ASCII text files (with Macintosh character encoding) whose contents contain only the text portions of the input EPS files. This is useful for simply browsing the textual content of EPS files or for doing text searches.  Note that the initial implementation is quite simple and does not account for such issues as the text's location on the original EPS page, etc. The text files can be opened with TeachText/SimpleText, or with any text editor or word processor.
  11.  
  12. • The error dialog is now somewhat more informational.  If you experience an error which displays only a number with no descriptive text, please let us know.
  13.  
  14. Bug Fixes
  15.  
  16. • Several cosmetic bugs in the progress dialog have been fixed:
  17.      (1) When converting more than 186 files at once, the progress indicator would get stuck.
  18.      (2) There was excessive flickering while updating the progress bar.
  19.      (3) When converting a folder of several short files, user events (such as attempting to cancel) were ignored.
  20.  
  21. • A rogue debugger break which was accidentally left active has been disabled.
  22.  
  23. • For dashed lines, the length of the dash array is now capped at 6.  EPS files normally allow up to 11 dash parameters, while Illustrator allows only 6.  As a result, some EPS files caused epsConverter to generate dash arrays which were too large for Illustrator to handle.  The symptom was that Illustrator would display an error dialog after attempting to read the file, complaining about the "d" operator.
  24.  
  25. • A problem was fixed which caused some files to trigger a limitcheck error while executing the clip operator.  This was most common with files generated by the LaserWriter 7.x driver.
  26.  
  27. • The bounding box is now more accurate, especially for files containing text.
  28.  
  29. • The statusdict implementation is more complete, for better compatibility with PostScript print-to-disk files as well as ill-behaved EPS files.
  30.  
  31. • When converting a folder which contained subfolders, the folder hierarchy was not preserved in the converted folder.  It was flattened so that all converted files were placed in a single output folder.  This is no longer the case.
  32.  
  33.  
  34. Known Problems and Limitations
  35.  
  36. • Stroked Text
  37.   
  38.    Photoshop does not rasterize stroked text.  A future release will offer
  39.    the option of generating path data for stroked text so that it is rasterized
  40.    by Photoshop.
  41.  
  42. • Placed Images
  43.  
  44.    Bitmap images are converted into placed images in the Illustrator file.
  45.    These print fine, but are of limited use since Illustrator has no raster
  46.    manipulation tools (it is a vector-only package), and thus does not display
  47.    them.  Even worse, when opening a converted document with embedded
  48.    placed images, Illustrator will prompt for the location of each placed image,
  49.    ignoring the fact that the data is embedded in the file itself.  This is a
  50.    limitation of Illustrator.  As a work-around, a future release of epsConverter
  51.    will offer the option of saving placed images into separate Photoshop-
  52.    compatible raster EPS files.
  53.  
  54. • Binary Headers/Trailers
  55.  
  56.    EPS files with binary headers and trailers currently choke epsConverter's
  57.    parser.  The symptom is a failure to convert with error #20 and a log
  58.    entry that looks something like the following:
  59.  
  60.       %%[ Error: undefined; OffendingCommand: ≈–”Δ ]%%
  61.  
  62.    This is most common with PC/DOS/Windows EPS files with embedded
  63.    TIFF previews.  A future release will correct this problem.  For now,
  64.    the work-around is to open the file in a text editor and delete all characters
  65.    preceding the "%!PS" at the front of the file, as well as all "funny"
  66.    characters at the end of the file before converting.
  67.  
  68.  • Font Re-encoding.
  69.   
  70.    When a font re-encoding uses a glyph which is not normally
  71.    defined by the standard PostScript encoding vector, the glyph
  72.    is treated as ".notdef" and is replaced by the NULL character.
  73.    Only reencoding of StandardEncoding is supported.  Symbol
  74.    encoding and other special encodings are not supported.
  75.   
  76.  • Patterns
  77.  
  78.    epsConverter does not generate Illustrator patterns.
  79.    An interesting side-effect of this is that you can convert
  80.    a file which is already in Illustrator EPS format, and patterns
  81.    will be simplified into lower-level objects.  The resulting
  82.    Illustrator file will be larger than the original file, but it
  83.    can be read into applications such as Photoshop, which normally
  84.    ignore patterns, (and the patterns will be rasterized!)
  85.  
  86.  • eofill and eoclip Operators Not Emulated
  87.   
  88.    EPS files may make use of these two operators as an alternate
  89.    way to fill and clip paths.  The Illustrator file format does
  90.    not support the use of these operators directly, so they must
  91.    be emulated.  In this release, these operators are simply
  92.    treated as though they were the fill and clip operators,
  93.    respectively.  The result is that some paths and masks may be
  94.    completely filled in, when they should actually contain interior holes.
  95.    
  96.  • clippath Operator Not Fully Emulated
  97.   
  98.    The clippath operator is used to turn a clipping mask into a path object
  99.    that can be filled or stroked.  Use of this operator in an EPS file
  100.    may result in a translation with undefined drawing behavior.
  101.  
  102.  • Non-Uniform Pen Scaling
  103.  
  104.    Some EPS files may scale user space non-uniformly in x and y.
  105.    That is, they may stretch the vertical axis by a different
  106.    amount then they stretch the horizontal axis.  In this case,
  107.    the pen's shape is also supposed to be scaled non-uniformly,
  108.    with the result that stroked lines will have varying width
  109.    depending upon their orientation, and their end caps will be skewed.
  110.    epsConverter will correctly handle all effects of non-uniform
  111.    scaling EXCEPT for its effect on line widths and end cap skewing.
  112.    It is our opinion that this case arises infrequently enough as to not
  113.    warrant attention in the first release. Let us know if you believe otherwise.
  114.  
  115.  • Halftone Screens
  116.  
  117.    Any halftone screens set in the EPS file are ignored.
  118.    Halftone screens are device-dependent and do not have
  119.    a representation in the Illustrator file format.
  120.  
  121.